home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000277_news@columbia.edu_Sat Nov 26 02:54:11 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07709
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 23:03:49 -0500
  3. Received: by apakabar.cc.columbia.edu id AA26504
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 23:03:47 -0500
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!sol.ctr.columbia.edu!caen!hookup!ames!news.Hawaii.Edu!mpg.phys.hawaii.edu!tony
  7. From: tony@mpg.phys.hawaii.edu (Antonio Querubin)
  8. Subject: Re: disabling \ translation
  9. Message-Id: <CzutEC.3ox@news.Hawaii.Edu>
  10. Sender: news@news.Hawaii.Edu
  11. Organization: University of Hawaii
  12. X-Newsreader: TIN [version 1.2 PL2]
  13. References: <Czpo7K.3Jx@news.hawaii.edu> <3b2l1p$n49@apakabar.cc.columbia.edu>
  14. Date: Sat, 26 Nov 1994 02:54:11 GMT
  15. Lines: 35
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  19. : In article <Czpo7K.3Jx@news.hawaii.edu>,
  20. : Antonio Querubin <tony@mpg.phys.hawaii.edu> wrote:
  21. : >I have a kermit script which reads a line at a time from a text file and
  22. : >outputs it to the active com port.
  23. : >
  24. : Using which Kermit program, and what version?
  25.  
  26. Kermit 3.14, latest beta downloaded today.
  27.  
  28. : >The problem I have is that some of the text in the file consists of the \
  29. : >character followed by numbers.  When the line is output to the com port
  30. : >it will sometimes transmit translated characters rather than the original
  31. : >text from the file.  ...  Is there any way of disabling the \ translation
  32. : >feature temporarily in a script?
  33. : >
  34. : Yes.  In C-Kermit 5A(190), there is "set command quoting off".  Also, in
  35. : both C-Kermit 5A (188-190) and MS-DOS Kermit 3.14 (but not earlier), you
  36. : should be able to do something like this:
  37.  
  38. :   read \%a
  39. :   output \fcontents(\%a)
  40.  
  41. Actually I have something like this in a loop:
  42.  
  43. read \%l
  44. output \Fcontents(\%l)\13
  45.  
  46. and the file contains:
  47. 94BQ011XXX UAR\47122  OSAN AB
  48. 94BQ011XXX UAR\47142  TAEGU
  49.  
  50. The \47122 and \47142 get sent as two control characters.
  51.  
  52.